home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / dev / cross / GBDK-2.0.lha / GBDK / examples / dscan / smakefile < prev   
Makefile  |  1999-02-07  |  257b  |  13 lines

  1.  
  2. all: dscan.gb
  3.  
  4. clean:
  5.     Delete #?.o #?.lst #?.map
  6.  
  7. dscan.o: dscan.c bkg_c.c bkg_m.c bkg.c bkg.h fore.c fore.h  
  8.     lcc -c dscan.c
  9.  
  10. # Link file, and write 0x80 at position 0x143 in header
  11. dscan.gb:    dscan.o
  12.     lcc -Wa-l -Wl-m -Wl-yp0x143=0x80 -o dscan.gb dscan.o
  13.